Global Index
HTML5 JS API Index > ECMAScript Tutorials & Specs

Object

See 15.2.1 and 15.2.2.

Constructor
Object(optional any value)
Operations
static Object
create(Object o, optional any properties)
The create function creates a new object with a specified prototype.
static Object
defineProperties(Object o, any props)
The defineProperties function is used to add own properties and/or update the attributes of existing own properties of an object.
static Object
defineProperty(Object o, string p, any attrs)
The defineProperty function is used to add an own property and/or update the attributes of an existing own property of an object.
static Object
freeze(Object o)
static Object
getOwnPropertyDescriptor(Object o, string p)
static string[]
getOwnPropertyNames(Object o)
static Object
getPrototypeOf(Object o)
static boolean
isExtensible(Object o)
static boolean
isFrozen(Object o)
static boolean
isSealed(Object o)
static string[]
keys(Object o)
static Object
preventExtensions(Object o)
static Object
seal(Object o)
boolean
hasOwnProperty(string property)
boolean
isPrototypeOf(Object o)
boolean
propertyIsEnumerable(string p)
string
toLocaleString()
string
toString()
Object
valueOf()